.slider {
  position: absolute;
  width: 100%;

  overflow: hidden;
}
.slider .slider-row {
  width: 1300px;
  float:left;
  height: 194.5px;
  background-image: url(/Templates/cn/images/ubiquity-summit-web-01.png);
  background-size: 2956px 194.5px;
  -webkit-animation: slide 50s linear infinite;
          animation: slide 50s linear infinite;
}

@-webkit-keyframes slide {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: -2956px;
  }
}

@keyframes slide {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: -2956px;
  }
}
